home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / 7CHABP (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  682 b   |  15 lines

  1. package com.sun.java.swing.tree;
  2.  
  3. import java.util.Enumeration;
  4. import java.util.NoSuchElementException;
  5.  
  6. class DefaultMutableTreeNode$1 implements Enumeration {
  7.    public boolean hasMoreElements() {
  8.       return false;
  9.    }
  10.  
  11.    public Object nextElement() {
  12.       throw new NoSuchElementException("No more elements");
  13.    }
  14. }
  15.